Force VS to use System.[Type] in Code Completion

Posted by James on Stack Overflow See other posts from Stack Overflow or by James
Published on 2010-04-04T12:47:25Z Indexed on 2010/04/04 12:53 UTC
Read the original article Hit count: 219

Is it possible to have Visual Studio code completion use the System.[Type] instead of the keyword.

Example:

Autocomplete of List<String> myList = completes as:

List<String> myList = new List<string>();

whereas, I want:

List<String> myList = new List<String>():

This isn't the only example, but hopefully shows what I'm looking for.

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about code-completion